﻿body {
}
/* CulturePage*/

/*Titre principal*/
.culture-page-title {
    text-align: center;
    margin-top: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: black;
    text-shadow: 1px 1px 3px black;
}
/* Titres des sections Culture */
.culture-title {
    font-size: 1.4em;
   /* margin: 1rem 0 0.5rem;*/
}
/* Texte brut des cultures */
.culture-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000;
    margin: 0.25rem 0;
    background: none;
}

.culture-bold {
    font-weight: 600;
}
/* Sélecteur de culture */
.culture-selector {
    text-align: center;   
    margin: 1.5rem 0;
}
    /* Label */
    .culture-selector label {
        font-size: 1.1em;
        font-weight: bold;
    }
/* Select tactile */
.culture-fragment-select {
    min-width: 220px;
    padding: 12px 18px; /* 👈 zone doigt */
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 20px;
    background-color: #0078d8; /* 👈 fond plus sombre */
    color: #080808;
    border: 2px solid #4a5a70;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    /* Survol souris */
    .culture-fragment-select:hover {
        background-color: #00c2d8;
        border-color: #0078ef;
    }

    /* Focus / tactile */
    .culture-fragment-select:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(120, 170, 255, 0.4);
    }

    /* Option */
    .culture-fragment-select option {
        font-weight: bold;
        color: #000;
    }

/* Titres */
.jeu-test {
    font-family: 'Segoe UI', sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 1rem;
    border-radius: 20px;
    font-weight: bold;
}



/* Définition Domaine*/
.definition {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    /*margin-bottom: 2rem;*/
    background-color: #0097ff;
    border-radius: 12px;
    font-weight: bold;
}
/*RESPONSIVE MOBILE*/
@media (max-width: 768px) {
    .culture-page-title {
        font-size: 1.6rem;
    }

    .culture-fragment-select {
        width: 100%;
        max-width: 320px;
    }
}